home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Sound / LAME / WarpOS / src / mpglib / Makefile.am < prev    next >
Encoding:
Makefile  |  2001-01-15  |  911 b   |  51 lines

  1. ## $Id: Makefile.am,v 1.10 2001/01/15 15:16:09 aleidinger Exp $
  2.  
  3. include $(top_srcdir)/Makefile.am.global
  4.  
  5. INCLUDES = @INCLUDES@ -I$(top_srcdir)/libmp3lame -I$(top_builddir)
  6.  
  7. EXTRA_DIST = \
  8.     mpglib.dsp
  9.  
  10. DEFS = @DEFS@ @CONFIG_DEFS@
  11.  
  12. noinst_LTLIBRARIES = libmpgdecoder.la
  13.  
  14. libmpgdecoder_la_SOURCES = common.c \
  15.     dct64_i386.c \
  16.     decode_i386.c \
  17.     interface.c \
  18.     layer1.c \
  19.     layer2.c \
  20.     layer3.c \
  21.     tabinit.c
  22.  
  23. noinst_HEADERS = common.h \
  24.     dct64_i386.h \
  25.     decode_i386.h \
  26.     huffman.h \
  27.     interface.h \
  28.     l2tables.h \
  29.     layer1.h \
  30.     layer2.h \
  31.     layer3.h \
  32.     mpg123.h \
  33.     mpglib.h \
  34.     tabinit.h
  35.  
  36. LCLINTFLAGS= \
  37.     +posixlib \
  38.     +showsummary \
  39.     +showalluses \
  40.     +whichlib \
  41.     +forcehints \
  42.     -fixedformalarray \
  43.     +matchanyintegral \
  44.     -Dlint
  45.  
  46. lclint.txt: ${libmpgdecoder_la_SOURCES} ${noinst_HEADERS}
  47.     @lclint ${LCLINTFLAGS} ${INCLUDES} ${DEFS} ${libmpgdecoder_la_SOURCES} 2>&1 >lclint.txt || true
  48.  
  49. lclint: lclint.txt
  50.     more lclint.txt
  51.